home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 34 / Amiga Format CD34 (1998-11-20)(Future Publishing)(GB)[!][Christmas issue].iso / -websites- / f1_gp / ftp / f1gp-ed.lha / F1GP-Ed / Install / Install_F1GP-Ed < prev   
Text File  |  1998-06-02  |  32KB  |  1,428 lines

  1. ; F1GP-Ed Install Script - Copyright © 1994-1998 Oliver Roberts
  2. ;
  3. ; $VER: Install_F1GP-Ed 4.27 (2.6.98)
  4. ;
  5. ; - German translation by Dirk Kocherscheidt
  6. ; - French translation by Daniel Grenson
  7.  
  8. ;****************************************************************************
  9. ; Distribution Parameters
  10.  
  11. (set #frenchdocexists 0)
  12.  
  13. ;****************************************************************************
  14. ; English strings
  15. ;
  16. (set #str-installtype
  17.     "Choose installation:"
  18. )
  19.  
  20. (set #str-hd
  21.     "Hard disk installation"
  22. )
  23.  
  24. (set #str-floppy
  25.     "Floppy disk installation"
  26. )
  27.  
  28. (set #str-help-installtype (cat
  29.     "F1GP-Ed is best installed to a hard drive.  If you don't have "
  30.     "one, then select floppy disk and this installer will install "
  31.     "F1GP-Ed to floppy disk instead.")
  32. )
  33.  
  34. (set #str-hdconfirm (cat
  35.     "Make sure you have booted from your hard drive, before "
  36.     "continuing with this installation!\n\nDo you want to continue?")
  37. )
  38.  
  39. (set #str-floppyconfirm (cat
  40.     "Make sure you have a blank formatted disk ready.  Refer to "
  41.     "the Workbench manual if you are unsure how to format a disk.\n\n"
  42.     "Do you want to continue?")
  43. )
  44.  
  45. (set #str-diskwarn (cat
  46.     "IMPORTANT: If you are running this installer off a floppy disk, "
  47.     "please make sure the disk is write-protected before proceeding.\n\n"
  48.     "Please be aware that a full installation won't fit on a single DD "
  49.     "floppy disk, so it's best to only choose one language for the "
  50.     "documentation, and only the relevant locale catalog.")
  51. )
  52.  
  53. (set #str-diskinsertnew
  54.     "Please insert a blank formatted disk in drive DF%ld:"
  55. )
  56.  
  57. (set #str-diskremove
  58.     "You should now remove this disk and mark it as the %s disk."
  59. )
  60.  
  61. (set #str-diskrename1
  62.     "main F1GP-Ed"
  63. )
  64.  
  65. (set #str-diskanydrive (cat
  66.     "From now on you may insert this disk in any drive when requested "
  67.     "(i.e. not just the internal drive).")
  68. )
  69.  
  70. (set #str-diskinsert
  71.     "Please insert the %s disk in any drive"
  72. )
  73.  
  74. (set #str-copy
  75.     "Copying files to %s"
  76. )
  77.  
  78. (set #str-tmpcopy
  79.     "Copying files to temporary directory"
  80. )
  81.  
  82. (set #str-tmpclean
  83.     "Cleaning temporary directory"
  84. )
  85.  
  86. (set #str-hdwhere
  87.     "Select where F1GP-Ed should be installed (a drawer called \"F1GP-Ed\" will be created)"
  88. )
  89.  
  90. (set #str-fileexists (cat
  91.     "Could not create the \"F1GP-Ed\" drawer - make sure there are "
  92.     "no files called \"F1GP-Ed\" in the destination you selected.\n\n\n"
  93.     "Installation Failed!")
  94. )
  95.  
  96. (set #str-drawerexists (cat
  97.     "The F1GP-Ed drawer already exists.  It will be renamed "
  98.     "to \"F1GP-Ed_OLD\" if you want to keep any of the files "
  99.     "in it, otherwise all files will be deleted/replaced.")
  100. )
  101.  
  102. (set #str-replacedrawer
  103.     "Replace drawer"
  104. )
  105.  
  106. (set #str-renamedrawer
  107.     "Rename drawer"
  108. )
  109.  
  110. (set #str-extract
  111.     "Unpacking files - this may take a while..."
  112. )
  113.  
  114. (set #str-whichdocs
  115.     "Install documentation for which languages?"
  116. )
  117.  
  118. (set #str-helplanguage
  119.     "Which language should be used for on-line help?"
  120. )
  121.  
  122. (set #str-help-helplanguage (cat
  123.     "You should select your preferred language from the list so that "
  124.     "F1GP-Ed knows which version of the documentation to use for "
  125.     "the on-line help feature.  This is done by modifying the "
  126.     "HELPFILE tooltype in the F1GP-Ed program icon.")
  127. )
  128.  
  129. (set #str-whichcatalogs
  130.     "Install which catalogs? (english is built-in)"
  131. )
  132.  
  133. (set #str-help-whichcatalogs (cat
  134.     "If you have Workbench 2.1 or higher, F1GP-Ed will be able to "
  135.     "make use of locale catalogs.  This means that the strings in "
  136.     "F1GP-Ed itself can be in a different language.\n\n"
  137.     "Selected catalogs will be installed in the F1GP-Ed drawer.")
  138. )
  139.  
  140. (set #str-confirmoptional
  141.     "Please select which of these you'd like to install"
  142. )
  143.  
  144. (set #str-seasondata
  145.     "%s season data"
  146. )
  147.  
  148. (set #str-soundfiles
  149.     "Replacement sound samples (%s drawer)"
  150. )
  151.  
  152. (set #str-gfxfiles
  153.     "Replacement cockpit designs (%s drawer)"
  154. )
  155.  
  156. (set #str-extrafiles
  157.     "Miscellaneous F1GP stuff (%s drawer)"
  158. )
  159.  
  160. (set #str-update
  161.     "Installing newer version of %s"
  162. )
  163.  
  164. (set #str-exe
  165.     "F1GP-Ed executable"
  166. )
  167.  
  168. (set #str-iconfix
  169.     "Setting icon tools and tooltypes"
  170. )
  171.  
  172. (set #str-floppyextras
  173.     "Copying extra files required for autobooting disk"
  174. )
  175.  
  176. (set #str-theend (cat
  177.     "\nEnjoy using F1GP-Ed ;-)\n\n"
  178.     "The latest version of F1GP-Ed is always available from the "
  179.     "F1GP-Ed Web Page - %s\n\n%s\n")
  180. )
  181.  
  182. (set #str-tmpstorage (cat
  183.     "Select an area to use as temporary storage.  A drawer called \"%s\" "
  184.     "will be created there, and will be deleted when installation has "
  185.     "been completed.  The default is usually sufficient.")
  186. )
  187.  
  188. (set #str-prepdisk
  189.     "Preparing floppy disk"
  190. )
  191.  
  192. (set #str-bootfloppyend (cat
  193.     "F1GP-Ed disk created.  You should now be able to boot directly "
  194.     "from the disk after this installer has exited.")
  195. )
  196.  
  197. (set #str-intdrive
  198.     "internal drive"
  199. )
  200.  
  201. (set #str-selectfloppydrive (cat
  202.     "Select a valid floppy disk drive - this will be the drive that "
  203.     "will be used to initialize your blank disk.  Unless your internal "
  204.         "drive is broken, it's probably best to go along with the default...")
  205. )
  206.  
  207. ;****************************************************************************
  208. ; German strings
  209. ;
  210. (if (= @language "deutsch") (
  211.     (set #str-installtype
  212.         "Wählen Sie die Art der Installation:"
  213.     )
  214.  
  215.     (set #str-hd
  216.         "Festplatten Installation"
  217.     )
  218.  
  219.     (set #str-floppy
  220.         "Floppy Disk Installation"
  221.     )
  222.  
  223.     (set #str-help-installtype (cat
  224.         "F1GP-Ed wird am besten auf die Festplatte installiert. Wenn "
  225.         "Sie keine haben, dann wählen Sie Floppy Disk und der Installer "
  226.         "wird F1GP-Ed statt dessen auf Diskette installieren.")
  227.     )
  228.  
  229.     (set #str-hdconfirm (cat
  230.         "Versichern Sie sich, daß Sie von Ihrer Festplatte gebootet haben, "
  231.         "bevor Sie mit dieser Installation fortfahren!\n\nMöchten Sie fortfahren?")
  232.     )
  233.  
  234.     (set #str-floppyconfirm (cat
  235.         "Denken Sie daran, eine formatierte Leerdiskette bereit zu haben. "
  236.         "Schlagen Sie in Ihrem Workbench Handbuch nach, wenn Sie nicht genau "
  237.         "wissen wie man eine Diskette formatiert.\n\n"
  238.         "Möchten Sie fortfahren?")
  239.     )
  240.  
  241.     (set #str-diskwarn (cat
  242.         "WICHTIG: Wenn Sie diesen Installer von Diskette laufen lassen, "
  243.         "dann überzeugen Sie sich, daß die Diskette schreibgeschützt ist, "
  244.         "bevor Sie fortfahren.\n\n Bitte denken Sie daran, daß die komplette "
  245.         "Installation nicht auf eine einzige DD Diskette paßt; es ist also am "
  246.         "besten, wenn Sie nur eine Sprache für die Dokumentation und nur den "
  247.         "für Sie relevanten Locale Catalog wählen.")
  248.     )
  249.  
  250.     (set #str-diskinsertnew
  251.         "Bitte legen Sie eine formatierte Leerdiskette in Laufwerk DF%ld: ein"
  252.     )
  253.  
  254.     (set #str-diskremove
  255.         "Sie sollten diese Diskette jetzt entfernen und als %s Diskette beschriften."
  256.     )
  257.  
  258.     (set #str-diskrename1
  259.         "F1GP-Ed Haupt -"
  260.     )
  261.  
  262.     (set #str-diskanydrive (cat
  263.         "Von jetzt an können Sie die Diskette in jedes beliebige Laufwerk "
  264.         "einlegen (d.h. nicht nur ins interne Laufwerk).")
  265.     )
  266.  
  267.     (set #str-diskinsert
  268.         "Bitte legen Sie die %s Diskette in ein beliebiges Laufwerk"
  269.     )
  270.  
  271.     (set #str-copy
  272.         "Kopiere Dateien nach %s"
  273.     )
  274.  
  275.     (set #str-tmpcopy
  276.         "Kopiere temporär benötigte Dateien in temporäres Verzeichnis"
  277.     )
  278.  
  279.     (set #str-tmpclean
  280.         "Säubere temporäres Verzeichnis"
  281.     )
  282.  
  283.     (set #str-hdwhere (cat
  284.         "Wählen Sie, wo F1GP-Ed installiert werden soll (ein Verzeichnis namens "
  285.         "\"F1GP-Ed\" wird dort angelegt)")
  286.     )
  287.  
  288.     (set #str-fileexists (cat
  289.         "Konnte das Verzeichnis \"F1GP-Ed\" nicht anlegen - überzeugen Sie sich, daß "
  290.         "keine Dateien namens \"F1GP-Ed\" in Ihrem gewählten Ziel sind.\n\n\n"
  291.         "Installation fehlgeschlagen!")
  292.     )
  293.  
  294.     (set #str-drawerexists (cat
  295.         "Das F1GP-Ed Verzeichnis existiert bereits. Es wird in \"F1GP-Ed_OLD\" "
  296.         "umbenannt, wenn Sie irgendwelche Dateien daraus behalten wollen, "
  297.         "anderenfalls werden alle Dateien gelöscht/ersetzt.")
  298.     )
  299.  
  300.     (set #str-replacedrawer
  301.         "Ersetze Verzeichnis"
  302.     )
  303.  
  304.     (set #str-renamedrawer
  305.         "Benenne Verzeichnis um"
  306.     )
  307.  
  308.     (set #str-extract
  309.         "Entpacke Dateien - das kann eine Weile dauern..."
  310.     )
  311.  
  312.     (set #str-whichdocs
  313.         "In welchen Sprachen soll die Dokumentation installiert werden?"
  314.     )
  315.  
  316.     (set #str-helplanguage
  317.         "Welche Sprache soll für die on-line Hilfe benutzt werden?"
  318.     )
  319.  
  320.     (set #str-help-helplanguage (cat
  321.         "Sie sollten aus dieser Liste Ihre bevorzugte Sprache auswählen, so daß "
  322.         "F1GP-Ed weiß, welche Version der Dokumentation für das on-line Hilfe "
  323.         "Feature benutzt werden soll. Dies wird gemacht, indem